home *** CD-ROM | disk | FTP | other *** search
/ Especial Multimedia / Especial Multimedia.iso / Multimed / Prg / IMAGELIB.ZIP / MIMAGE.ZIP / VIEWPH.DPR < prev    next >
Text File  |  1995-07-24  |  453b  |  21 lines

  1. program Viewph;
  2. uses
  3.    Forms,
  4.    Uimage in 'UIMAGE.PAS' {Form1},
  5.    Ufullscr in 'UFULLSCR.PAS' {FullSlide},
  6.    Uabout in 'UABOUT.PAS' {AboutBox},
  7.    U_p_size in 'U_P_SIZE.PAS' {Printersize};
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.    Application.CreateForm(TForm1, Form1);
  13.    Application.CreateForm(TFullSlide, FullSlide);
  14.    Application.CreateForm(TAboutBox, AboutBox);
  15.    Application.CreateForm(TPrintersize, Printersize);
  16.    Application.Run;
  17. end.
  18.  
  19.  
  20.  
  21.